home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 4
/
Apprentice-Release4.iso
/
Languages
/
THIN C 2.0
/
Projects
/
printFile
/
printFile.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-04-16
|
187 b
|
17 lines
|
[
TEXT/THIN
]
#include <stdio.h>
main()
{
FILE *fp;
int c;
fp = fopen( "My Data File", "r" );
if ( fp != NULL )
{
while ( (c = fgetc( fp )) != EOF )
putchar( c );
fclose( fp );
}
}